home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_iiwizsec.str < prev    next >
Encoding:
Text File  |  1998-11-12  |  3.1 KB  |  76 lines

  1. <%
  2. ' localizable strings for new node wizards
  3.  
  4. Const L_TITLE = "Permissions Wizard"
  5. Const L_WIZARD_TEXT = ""
  6.  
  7. 'Page 1 - Welcome
  8. Const L_WELCOME_HEAD = "Welcome to the IIS Permissions Wizard"
  9. Const L_WELCOME1 = "The permissions wizard will help you configure security on publishing points on your site."
  10. Const L_WELCOME2 = ""
  11. Const L_WELCOME3 = "Click Next to continue or Cancel to exit the permissions wizard."
  12.  
  13. 'Page 5 - FINISH
  14. Const L_FINISH_HEAD = "Congratulations"
  15. Const L_FINISH1 = "You have successfully completed the IIS Permissions Wizard."
  16. Const L_FINISH2 = ""
  17. Const L_FINISH3 = "Click Close to continue."
  18.  
  19. 'Page 2
  20. Const L_HOW = "What security settings do you want to use?"
  21. Const L_HOW_DESC = "Security settings control how users are authenticated and what content they may view."
  22. Const L_INHERITWEB = "Inherit all Web security settings."
  23. Const L_TEMPLATESWEB = "Select Web security settings based on a template."
  24. Const L_INHERITFTP = "Inherit all FTP security settings."
  25. Const L_TEMPLATESFTP = "Select FTP security settings based on a template."
  26.  
  27. 'Page 3
  28. Const L_TEMPLATE = "Select a scenario that best describes your site."
  29. Const L_TEMPLATE_DESC = "The appropriate security settings will be selected for your site."
  30. Const L_SAMPLETEMPLATE = "Description"
  31.  
  32. 'Page 4
  33. Const L_SUMMARY = "Security Summary"
  34. Const L_SUMMARY_DESC = ""
  35. Const L_SUMMARYWARNING_TEXT = "Your site will have the following security settings."
  36. Const L_AUTHENTICATIONMETHODS = "Authentication Methods"
  37. Const L_ANONAUTH = "Anonymous users allowed"
  38. Const L_ANONDENY = "Anonymous access is denied"
  39. Const L_ANONONLY = "Only anonymous users allowed"
  40. Const L_BASICAUTH =  "Basic Authentication (clear text)"
  41. Const L_NTLMAUTH =  "Integrated Windows Authentication"
  42. Const L_DIGESTAUTH =  "Digest Authentication for Windows 2000 Domains"
  43. Const L_ACCESSPERMS = "Access Permissions"
  44. Const L_READACCESS =  "Files can be viewed"
  45. Const L_WRITEACCESS =  "Files can be uploaded"
  46. Const L_SOURCEREADACCESS =  "Script source can be viewed"
  47. Const L_SOURCEWRITEACCESS =  "Script source can be uploaded"            
  48. Const L_SCRIPTACCESS =  "Scripts can be run"
  49. Const L_EXECUTEACCESS =  "Executable files can be run"
  50. Const L_DIRBROWSE =  "Directory structure can be viewed"
  51. Const L_IPSECURITY =  "Address Restrictions"
  52. Const L_IPSECGRANTDEFAULT = "By default all access is granted"
  53. Const L_IPSECDENYDEFAULT = "By default all access is denied"
  54. Const L_IPSECNORESTRICTIONS = "(None)"
  55.  
  56. ' Localization Note:
  57. ' The following strings are built at runtime with the IP address value stored
  58. ' in STR_SUBST. If it is necessary to break up or reorder the localizable
  59. ' part of the string, please ensure that the IP address has the correct
  60. ' spacing around it and that the string fragments are connected with &
  61. ' For example:
  62. ' L_IPSECGRANTED = "Granted acccess " & STR_SUBST & " is"
  63. '
  64. Const STR_SUBST = "<s>"
  65. Dim L_IPSECGRANTED, L_IPSEDDENIED
  66.  
  67. L_IPSECGRANTED = STR_SUBST & " is granted access"
  68. L_IPSECDENIED = STR_SUBST & " is denied access"
  69.  
  70. ' Resizing constants for the Permissions Wizard
  71.  
  72. ' Size of the summary page list box.
  73. Const L_SUMMARYROWS_NUM = 10
  74. Const L_SUMMARYCOLS_NUM = 55
  75.  
  76. %>